home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dlar2v.z / dlar2v
Encoding:
Text File  |  2002-10-03  |  3.3 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAARRRR2222VVVV((((3333SSSS))))                                                          DDDDLLLLAAAARRRR2222VVVV((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLAR2V - applie a vector of real plane rotations from both sides to a
  10.      sequence of 2-by-2 real symmetric matrices, defined by the elements of
  11.      the vectors x, y and z
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE DLAR2V( N, X, Y, Z, INCX, C, S, INCC )
  15.  
  16.          INTEGER        INCC, INCX, N
  17.  
  18.          DOUBLE         PRECISION C( * ), S( * ), X( * ), Y( * ), Z( * )
  19.  
  20. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  21.      These routines are part of the SCSL Scientific Library and can be loaded
  22.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  23.      directs the linker to use the multi-processor version of the library.
  24.  
  25.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  26.      4 bytes (32 bits). Another version of SCSL is available in which integers
  27.      are 8 bytes (64 bits).  This version allows the user access to larger
  28.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  29.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  30.      only one of the two versions; 4-byte integer and 8-byte integer library
  31.      calls cannot be mixed.
  32.  
  33. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  34.      DLAR2V applies a vector of real plane rotations from both sides to a
  35.      sequence of 2-by-2 real symmetric matrices, defined by the elements of
  36.      the vectors x, y and z. For i = 1,2,...,n
  37.         ( x(i)  z(i) ) := (  c(i)  s(i) ) ( x(i)  z(i) ) ( c(i) -s(i) )
  38.         ( z(i)  y(i) )    ( -s(i)  c(i) ) ( z(i)  y(i) ) ( s(i)  c(i) )
  39.  
  40.  
  41. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  42.      N       (input) INTEGER
  43.              The number of plane rotations to be applied.
  44.  
  45.      X       (input/output) DOUBLE PRECISION array,
  46.              dimension (1+(N-1)*INCX) The vector x.
  47.  
  48.      Y       (input/output) DOUBLE PRECISION array,
  49.              dimension (1+(N-1)*INCX) The vector y.
  50.  
  51.      Z       (input/output) DOUBLE PRECISION array,
  52.              dimension (1+(N-1)*INCX) The vector z.
  53.  
  54.      INCX    (input) INTEGER
  55.              The increment between elements of X, Y and Z. INCX > 0.
  56.  
  57.      C       (input) DOUBLE PRECISION array, dimension (1+(N-1)*INCC)
  58.              The cosines of the plane rotations.
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDLLLLAAAARRRR2222VVVV((((3333SSSS))))                                                          DDDDLLLLAAAARRRR2222VVVV((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      S       (input) DOUBLE PRECISION array, dimension (1+(N-1)*INCC)
  75.              The sines of the plane rotations.
  76.  
  77.      INCC    (input) INTEGER
  78.              The increment between elements of C and S. INCC > 0.
  79.  
  80. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  81.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  82.  
  83.      This man page is available only online.
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.